home *** CD-ROM | disk | FTP | other *** search
/ Private Casting / Casting One.mdf / Docs / Interview.dir / Internal_61.ls < prev    next >
Encoding:
Text File  |  1997-01-22  |  1.5 KB  |  53 lines

  1. on mouseEnter
  2.   cursor([cast "curs", cast "mask"])
  3.   puppetSprite(the currentSpriteNum, 1)
  4.   set the blend of sprite the currentSpriteNum to 50
  5. end
  6.  
  7. on mouseLeave
  8.   cursor(-1)
  9.   set the blend of sprite the currentSpriteNum to 100
  10. end
  11.  
  12. on mouseUp
  13.   global chica
  14.   puppetSprite(14, 1)
  15.   cursor(-1)
  16.   set the blend of sprite the currentSpriteNum to 100
  17.   updateStage()
  18.   if the clickOn = 6 then
  19.     if the type of sprite 18 = #digitalVideo then
  20.       set the movieRate of sprite 18 to 0
  21.     end if
  22.     puppetSound(0)
  23.     go(1, "models")
  24.   else
  25.     if the clickOn = 12 then
  26.       set the movieRate of sprite 18 to 0
  27.       set the movieTime of sprite 18 to 0
  28.       set the castNum of sprite 14 to the number of member "play"
  29.     else
  30.       if the clickOn = 13 then
  31.         set the castNum of sprite 14 to the number of member "pause"
  32.         set the movieRate of sprite 18 to -2
  33.       else
  34.         if the clickOn = 14 then
  35.           if the movieRate of sprite 18 > 0 then
  36.             set the castNum of sprite 14 to the number of member "play"
  37.             set the movieRate of sprite 18 to 0
  38.           else
  39.             set the castNum of sprite 14 to the number of member "pause"
  40.             puppetSound(0)
  41.             set the movieRate of sprite 18 to 1
  42.           end if
  43.         else
  44.           if the clickOn = 15 then
  45.             set the castNum of sprite 14 to the number of member "pause"
  46.             set the movieRate of sprite 18 to 2
  47.           end if
  48.         end if
  49.       end if
  50.     end if
  51.   end if
  52. end
  53.